/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ─── Design Tokens ────────────────────────────────────────── */
:root {
    /* Brand palette */
    --deep-blue-h: 205;
    --deep-blue-s: 100%;
    --deep-blue-l: 33%;

    --aqua-h: 194;
    --aqua-s: 100%;
    --aqua-l: 40%;

    --green-h: 152;
    --green-s: 45%;
    --green-l: 42%;

    /* Semantic tokens */
    --background: 0 0% 100%;
    --foreground: 210 25% 12%;

    --card: 0 0% 100%;
    --card-foreground: 210 25% 12%;

    --popover: 0 0% 100%;
    --popover-foreground: 210 25% 12%;

    /* Primary = Deep Blue */
    --primary: 205 100% 33%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 205 100% 42%;
    --primary-glow: 205 100% 55%;

    /* Secondary = Aqua */
    --secondary: 194 100% 40%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 194 100% 52%;

    /* Accent = Green */
    --accent: 152 45% 42%;
    --accent-foreground: 0 0% 100%;
    --accent-light: 152 45% 55%;

    --muted: 210 20% 96%;
    --muted-foreground: 210 15% 46%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;

    --border: 210 20% 90%;
    --input: 210 20% 90%;
    --ring: 205 100% 33%;

    --radius: 0.75rem;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(205, 100%, 20%) 0%, hsl(194, 100%, 32%) 50%, hsl(152, 45%, 35%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    --gradient-aqua: linear-gradient(135deg, hsl(194, 100%, 40%) 0%, hsl(152, 45%, 42%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(205 60% 97%) 100%);
    --gradient-section: linear-gradient(180deg, hsl(205 60% 97%) 0%, hsl(0 0% 100%) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px -2px hsl(205 100% 33% / 0.12);
    --shadow-md: 0 4px 20px -4px hsl(205 100% 33% / 0.18);
    --shadow-lg: 0 8px 40px -8px hsl(205 100% 33% / 0.25);
    --shadow-glow: 0 0 30px hsl(194 100% 40% / 0.3);
}

.dark {
    --background: 205 40% 8%;
    --foreground: 210 20% 96%;
    --card: 205 35% 12%;
    --card-foreground: 210 20% 96%;
    --popover: 205 35% 12%;
    --popover-foreground: 210 20% 96%;
    --primary: 194 100% 52%;
    --primary-foreground: 205 40% 8%;
    --secondary: 205 100% 45%;
    --secondary-foreground: 0 0% 100%;
    --muted: 205 35% 18%;
    --muted-foreground: 210 15% 60%;
    --accent: 152 45% 55%;
    --accent-foreground: 205 40% 8%;
    --border: 205 35% 20%;
    --input: 205 35% 20%;
    --ring: 194 100% 52%;
}

/* ─── Base Reset ───────────────────────────────────────────── */
* {
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

/* ─── Utility Classes ──────────────────────────────────────── */
.gradient-hero    { background: var(--gradient-hero); }
.gradient-primary { background: var(--gradient-primary); }
.gradient-aqua    { background: var(--gradient-aqua); }
.gradient-card    { background: var(--gradient-card); }
.gradient-section { background: var(--gradient-section); }

.shadow-brand-sm { box-shadow: var(--shadow-sm); }
.shadow-brand-md { box-shadow: var(--shadow-md); }
.shadow-brand-lg { box-shadow: var(--shadow-lg); }
.shadow-glow     { box-shadow: var(--shadow-glow); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-aqua {
    background: var(--gradient-aqua);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Global ───────────────────────────────────────────────── */
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
}
h1 {
    font-size: 3.5em;
}
/* ─── Navigation ───────────────────────────────────────────── */
.logo-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

logo img {
    height: 100px;
    position: relative;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* White nav once user scrolls away from the hero */
nav.nav-scrolled {
    background-color: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-sm);
}

/* Menu dropdown — hidden by default on all sizes */
nav ul {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-md);
    margin: 0;
    padding: 8px 0;
    z-index: 100;
}

nav ul.open {
    display: flex;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    padding: 12px 28px;
    transition: background 0.15s ease, color 0.15s ease;
}

nav ul li a:hover {
    background: hsl(var(--muted));
    color: hsl(var(--primary));
}

/* ─── Nav Right (actions + hamburger grouped) ──────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── Nav Actions (cart + order) ───────────────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    color: hsl(var(--primary-foreground));
    padding: 8px;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.35s ease;
}

nav.nav-scrolled .nav-cart {
    border-color: hsl(var(--border));
    color: hsl(var(--foreground));
}

.nav-cart:hover {
    background: rgba(255, 255, 255, 0.15);
    color: hsl(var(--primary-foreground));
    opacity: 1;
    box-shadow: none;
}

nav.nav-scrolled .nav-cart:hover {
    background: hsl(var(--muted));
    color: hsl(var(--primary));
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    font-size: 0.65em;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.nav-order-btn {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    text-decoration: none;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.nav-order-btn:hover {
    opacity: 0.88;
    box-shadow: var(--shadow-md);
}

/* ─── Hamburger Button ─────────────────────────────────────── */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    box-shadow: none;
    width: 36px;
    height: 36px;
    order: 0;
}

.nav-hamburger:hover {
    opacity: 1;
    box-shadow: none;
    background: transparent;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: hsl(var(--primary-foreground));
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
    transform-origin: center;
}

nav.nav-scrolled .nav-hamburger span {
    background: hsl(var(--foreground));
}

/* Animate to × when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Sections ─────────────────────────────────────────────── */
section {
    text-align: center;
    padding: 50px 20px;
}

section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 60px;
}

/* Full-cover background image */
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    z-index: 0;
}

/* Gradient overlay on top of the image */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        hsl(205 100% 20% / 0.82) 0%,
        hsl(194 100% 32% / 0.72) 50%,
        hsl(152 45% 35% / 0.65) 100%
    );
    z-index: 1;
}

/* Content container — left-aligned, above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Hero label badge */
.hero-label {
    display: inline-block;
    background: hsl(var(--secondary) / 0.20);
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--secondary) / 0.40);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    white-space: normal;
    word-break: break-word;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Override text colours for contrast on the dark overlay */
.hero-content h1 {
    color: hsl(var(--primary-foreground));
    font-size: 3.75rem;
    margin: 0;
}

.hero-content h1 span.text-gradient {
    background: linear-gradient(135deg, hsl(194 100% 75%) 0%, hsl(152 45% 70%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: hsl(0 0% 100% / 0.85);
    margin: 0;
    font-size: 1.25rem;
}

/* Buttons row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-or {
    color: hsl(0 0% 100% / 0.65);
    font-size: 0.9em;
}

/* Trust badges row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: hsl(var(--primary-foreground) / 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--primary-foreground) / 0.20);
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
        min-height: 100svh;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions button {
        width: 100%;
    }

    .hero-trust-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .hero-label {
        font-size: 0.78rem;
        padding: 0.3rem 0.75rem;
        text-align: center;
    }
}

section h1 {
    font-size: 2.5em;
    color: hsl(var(--foreground));
}

section h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section h2 {
    font-size: 2em;
    color: hsl(var(--primary));
}

section p {
    font-size: 1.2em;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 20px auto 0;
}

/* ─── Buttons ──────────────────────────────────────────────── */
button {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-lg);
}

/* ─── Badges ───────────────────────────────────────────────── */
.badge,
badge {
    display: inline-block;
    white-space: nowrap;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 6px;
    box-shadow: var(--shadow-sm);
}

badge span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: hsl(var(--primary-foreground));
    border-radius: 50%;
    margin-left: 10px;
}

/* ─── Stats Bar ────────────────────────────────────────────── */
section:has(.Stats) {
    padding: 0;
}

.Stats {
    background: var(--gradient-primary);
    padding: 3rem 1rem;
}

.Stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    color: hsl(var(--primary-foreground));
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.Stats-grid div {
    text-align: center;
}

.Stats-grid h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: hsl(var(--primary-foreground));
}

.Stats-grid p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    color: hsl(var(--primary-foreground) / 0.8);
}

@media (min-width: 768px) {
    .Stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── Problem & Solution Sections ─────────────────────────── */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
}

.section-header p {
    max-width: 520px;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Problem */
.problem-section {
    padding: 5rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .problem-grid { grid-template-columns: repeat(4, 1fr); }
}

.problem-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2rem;
    line-height: 1;
}

.problem-card p {
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
    margin: 0;
}

.problem-card strong {
    color: hsl(var(--primary));
}

/* Solution / Benefits */
.solution-section {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 560px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: hsl(var(--primary) / 0.12);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.55;
    margin: 0;
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-card blockquote {
    background: none;
    border-left: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-width: none;
    font-size: 0.95rem;
    color: hsl(var(--foreground));
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    margin: 0;
}

.testimonial-location {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

/* ─── Cards (blockquote) ───────────────────────────────────── */
blockquote {
    background: var(--gradient-card);
    border-left: 4px solid hsl(var(--primary));
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 24px 28px;
    margin: 16px auto;
    max-width: 560px;
    text-align: left;
    color: hsl(var(--foreground));
    font-size: 1em;
    line-height: 1.7;
}

blockquote footer {
    margin-top: 12px;
    font-size: 0.9em;
    font-weight: 600;
    color: hsl(var(--primary));
}

/* ─── Cost Savings Section ─────────────────────────────────── */
.savings-section {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .savings-grid { grid-template-columns: 1fr 1fr; }
}

/* Left column */
.savings-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.savings-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: hsl(var(--foreground));
    margin: 0;
}

.savings-left > p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.badge-accent {
    border: 1px solid hsl(var(--accent) / 0.35);
    color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.08);
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.savings-stat {
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.savings-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
    line-height: 1;
}

.savings-stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.savings-stat-destructive { color: hsl(0 72% 51%); }
.savings-stat-accent      { color: hsl(var(--accent)); }
.savings-stat-secondary   { color: hsl(var(--secondary)); }
.savings-stat-primary     { color: hsl(var(--primary)); }

.btn-savings-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    background: var(--gradient-aqua);
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-savings-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Right column */
.comparison-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 1.5);
    padding: 2rem;
}

.comparison-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 1.75rem;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comparison-labels span:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.comparison-labels span:last-child {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.comparison-track {
    height: 12px;
    border-radius: 9999px;
    background: hsl(var(--muted));
    overflow: hidden;
}

.comparison-fill {
    height: 100%;
    border-radius: 9999px;
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-fill.animated { width: var(--bar-width); }

.fill-destructive { background: hsl(0 72% 51%); }
.fill-orange      { background: #fb923c; }
.fill-accent      { background: hsl(var(--accent)); }

/* ─── Savings Calculator ───────────────────────────────────── */
.savings-calculator {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.savings-calculator.open {
    max-height: 600px;
    opacity: 1;
}

.calc-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.calc-inputs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calc-amount-field {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 140px;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background));
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-amount-field:focus-within {
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 2px hsl(var(--accent) / 0.20);
}

.calc-currency-symbol {
    padding: 0 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted) / 0.5);
    border-right: 1px solid hsl(var(--border));
    height: 100%;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.calc-amount-input {
    flex: 1;
    height: 2.6rem;
    padding: 0 0.75rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    outline: none;
}

.calc-amount-input::-webkit-inner-spin-button,
.calc-amount-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.calc-unit-select {
    height: 2.6rem;
    padding: 0 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.calc-unit-select:focus { border-color: hsl(var(--accent)); }

.calc-run-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: 2.6rem;
    padding: 0 1.25rem;
    border-radius: var(--radius);
    background: var(--gradient-aqua);
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    width: fit-content;
}

.calc-run-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Result banner */
.calc-result-banner {
    background: hsl(var(--muted) / 0.6);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.calc-result-row strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.calc-res-bad  { color: hsl(0 72% 51%); }
.calc-res-good { color: hsl(var(--accent)); }

.calc-result-divider {
    height: 1px;
    background: hsl(var(--border));
    margin: 0.1rem 0;
}

.calc-result-highlight {
    color: hsl(var(--foreground));
    font-weight: 600;
}

.calc-result-highlight strong {
    font-size: 1.1rem;
    color: hsl(var(--secondary));
}

.calc-result-payback {
    font-size: 0.78rem;
    color: hsl(var(--primary));
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.comparison-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: hsl(var(--muted-foreground));
}

/* ─── SDG Section ──────────────────────────────────────────── */
.sdg-section {
    padding: 5rem 0;
    background: hsl(var(--muted) / 0.35);
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .sdg-grid { grid-template-columns: repeat(6, 1fr); }
}

.sdg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.2s;
}

.sdg-card:hover {
    transform: translateY(-4px);
}

.sdg-badge {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px hsl(0 0% 0% / 0.18);
}

.sdg-card p {
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    line-height: 1.3;
    margin: 0;
}

/* ─── Final CTA Section ─────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 9999px;
    opacity: 0.2;
    filter: blur(80px);
    pointer-events: none;
}

.cta-blob-left {
    top: -60px;
    left: 20%;
    background: hsl(var(--secondary));
}

.cta-blob-right {
    bottom: -60px;
    right: 20%;
    background: hsl(var(--accent));
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-inner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: hsl(var(--primary-foreground));
    margin: 0;
    line-height: 1.1;
}

.cta-inner > p {
    font-size: 1.1rem;
    color: hsl(var(--primary-foreground) / 0.80);
    max-width: 480px;
    line-height: 1.65;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5rem;
    height: 3.25rem;
    border-radius: var(--radius);
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn-primary:hover {
    background: hsl(var(--secondary-light, var(--secondary)) / 0.85);
    transform: translateY(-1px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    height: 3.25rem;
    border-radius: var(--radius);
    background: #25D366;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn-outline:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Lead form */
.cta-lead-form {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-input-row {
    display: flex;
    gap: 0.5rem;
}

.cta-phone-input {
    flex: 1;
    height: 3rem;
    padding: 0 1rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.cta-phone-input::placeholder {
    color: hsl(var(--muted-foreground));
}

.cta-phone-input:focus {
    border-color: hsl(var(--secondary));
    box-shadow: 0 0 0 2px hsl(var(--secondary) / 0.35);
}

.cta-quote-btn {
    height: 3rem;
    padding: 0 1.25rem;
    border-radius: var(--radius);
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cta-quote-btn:hover { opacity: 0.88; }

.cta-footnote {
    font-size: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0;
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
}

.footer-main {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: hsl(var(--primary-foreground));
    line-height: 1;
    margin: 0;
}

.footer-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: hsl(var(--primary-foreground) / 0.60);
    margin: 0;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: hsl(var(--primary-foreground) / 0.70);
    line-height: 1.65;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary-foreground) / 0.10);
    color: hsl(var(--primary-foreground));
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social-btn:hover { background: hsl(var(--secondary)); }

/* Nav columns */
.footer-col { display: flex; flex-direction: column; gap: 0; }

.footer-col-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin: 0 0 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.70);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover { color: hsl(var(--secondary)); }

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    background: hsl(var(--primary-foreground) / 0.10);
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground) / 0.80);
}

/* Contact column */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.70);
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: hsl(var(--secondary));
}

.footer-whatsapp-link {
    font-size: 0.8rem;
    color: hsl(var(--accent));
    text-decoration: none;
    transition: color 0.15s;
}

.footer-whatsapp-link:hover { color: hsl(var(--accent) / 0.80); }

/* Newsletter */
.footer-newsletter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    margin: 0 0 0.5rem;
}

.footer-newsletter-row {
    display: flex;
    gap: 0.4rem;
}

.footer-email-input {
    flex: 1;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    background: hsl(var(--primary-foreground) / 0.10);
    border: 1px solid hsl(var(--primary-foreground) / 0.20);
    color: hsl(var(--primary-foreground));
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-email-input::placeholder { color: hsl(var(--primary-foreground) / 0.40); }

.footer-email-input:focus {
    border-color: hsl(var(--secondary));
    box-shadow: 0 0 0 2px hsl(var(--secondary) / 0.30);
}

.footer-send-btn {
    height: 2.25rem;
    padding: 0 0.9rem;
    border-radius: var(--radius);
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.footer-send-btn:hover { opacity: 0.85; }

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid hsl(var(--primary-foreground) / 0.10);
}

.footer-bottom-inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom-inner p {
    font-size: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.50);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.50);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-bottom-links a:hover { color: hsl(var(--primary-foreground) / 0.80); }

@media (max-width: 639px) {
    .footer-main {
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1.25rem;
    }

    .footer-brand,
    .footer-grid > *:last-child {
        grid-column: 1 / -1;
    }

    .footer-col-heading { margin-bottom: 0.85rem; }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-newsletter-row {
        max-width: 420px;
        width: 100%;
    }

    .footer-send-btn {
        padding: 0 1rem;
        white-space: nowrap;
    }

    .footer-send-btn svg { width: 14px; height: 14px; }

    .footer-bottom-inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* ─── Page Header (shared: About, Services, Contact) ────────── */
.page-header-section {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.page-header-blob {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 9999px;
    opacity: 0.18;
    filter: blur(70px);
    pointer-events: none;
}

.page-header-blob-left  { top: -60px; left: 10%; background: hsl(var(--secondary)); }
.page-header-blob-right { bottom: -60px; right: 10%; background: hsl(var(--accent)); }

.page-header-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.page-header-badge {
    border: 1px solid hsl(var(--primary-foreground) / 0.35);
    color: hsl(var(--primary-foreground));
    background: hsl(var(--primary-foreground) / 0.10);
}

.page-header-inner h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: hsl(var(--primary-foreground));
    margin: 0;
    line-height: 1.1;
}

.page-header-inner p {
    font-size: 1.05rem;
    color: hsl(var(--primary-foreground) / 0.80);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}

.nav-active {
    color: hsl(var(--primary)) !important;
    font-weight: 700;
}

/* ─── About Page ────────────────────────────────────────────── */
.about-mv-section { padding: 5rem 0; }

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-mv-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-mv-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s;
}

.about-mv-card:hover { transform: translateY(-3px); }

.about-mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsl(var(--primary) / 0.10);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mv-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: hsl(var(--foreground)); }
.about-mv-card p  { font-size: 0.9rem; line-height: 1.6; color: hsl(var(--muted-foreground)); margin: 0; }

.about-story-section { padding: 5rem 0; background: hsl(var(--background)); }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 900px) {
    .about-story-grid { grid-template-columns: 1.2fr 1fr; }
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story-text h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; margin: 0; color: hsl(var(--foreground)); }
.about-story-text p  { font-size: 0.95rem; line-height: 1.75; color: hsl(var(--muted-foreground)); margin: 0; }

.about-story-values {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
}

.about-story-values h3 { font-size: 1rem; font-weight: 700; margin: 0 0 1.25rem; color: hsl(var(--foreground)); }

.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
}

.about-values-list svg { flex-shrink: 0; margin-top: 2px; color: hsl(var(--primary)); }

/* ─── About Page — Section Heading ─────────────────────────── */
.about-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0;
    color: hsl(var(--foreground));
}

.about-section-heading p {
    max-width: 640px;
    color: hsl(var(--muted-foreground));
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── About Page — Management Team ─────────────────────────── */
.team-section { padding: 5rem 0; }

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 540px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    margin-bottom: 0.5rem;
    border: 3px solid hsl(var(--primary) / 0.15);
    background: hsl(var(--muted));
    display: block;
}

.team-photo-placeholder {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
}

.team-card p {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    line-height: 1.4;
}

/* ─── About Page — Awards & Recognition ────────────────────── */
.awards-section { padding: 5rem 0; background: hsl(var(--background)); }

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 700px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }

.award-card {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.award-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.award-icon {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: hsl(var(--accent) / 0.10);
    color: hsl(var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.award-card h3 {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
    line-height: 1.4;
}

/* ─── About Page — Partners & Clients ──────────────────────── */
.partners-section { padding: 5rem 0; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 600px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .partners-grid { grid-template-columns: repeat(5, 1fr); } }

.partner-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.25rem 0.75rem;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.partner-card img {
    width: 100%;
    max-width: 90px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.partner-card span {
    display: flex;
    align-items: center;
    flex: 1;
}

.partner-card:hover {
    transform: translateY(-2px);
    border-color: hsl(var(--primary) / 0.4);
    box-shadow: var(--shadow-sm);
}

/* ─── Services Page ─────────────────────────────────────────── */
.services-section { padding: 5rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: hsl(var(--primary) / 0.10);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 { font-size: 1rem; font-weight: 700; margin: 0; color: hsl(var(--foreground)); }
.service-card > p { font-size: 0.875rem; line-height: 1.65; color: hsl(var(--muted-foreground)); margin: 0; flex: 1;}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-features li {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    padding-left: 1rem;
    position: relative;
    text-align: left;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: 700;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: hsl(var(--primary));
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.15s;
}

.service-cta:hover { text-decoration: underline; }

/* Process steps */
.process-section { padding: 5rem 0; background: hsl(var(--muted) / 0.3); }

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

@media (min-width: 768px) {
    .process-steps { flex-direction: row; align-items: flex-start; }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    flex: 1;
    padding: 1.5rem 1rem;
}

.process-step-num {
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step h4 { font-size: 0.95rem; font-weight: 700; color: hsl(var(--foreground)); margin: 0; }
.process-step p  { font-size: 0.85rem; color: hsl(var(--muted-foreground)); line-height: 1.55; margin: 0; }

.process-connector {
    width: 2px;
    height: 32px;
    background: hsl(var(--border));
}

@media (min-width: 768px) {
    .process-connector { width: 48px; height: 2px; margin-top: 26px; flex-shrink: 0; }
}

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-channels-section { padding: 4rem 0; }

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-channels-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-channel-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.contact-channel-whatsapp { border-color: #25D366; }
.contact-channel-whatsapp .contact-channel-icon { background: #25D366; color: #fff; }

.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsl(var(--primary) / 0.10);
    color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-channel-card h4 { font-size: 0.95rem; font-weight: 700; color: hsl(var(--foreground)); margin: 0; }
.contact-channel-card p  { font-size: 0.875rem; color: hsl(var(--foreground)); margin: 0; font-weight: 500; }

.contact-channel-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.contact-main-section { padding: 4rem 0 5rem; }

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-main-grid { grid-template-columns: 1.4fr 1fr; }
}

.contact-form-wrap {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: hsl(var(--foreground)); margin: 0 0 0.4rem; }
.contact-form-wrap > p { font-size: 0.9rem; color: hsl(var(--muted-foreground)); margin: 0 0 1.75rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 560px) { .contact-form-row { grid-template-columns: 1fr; } }

.contact-field { display: flex; flex-direction: column; gap: 0.35rem; }

.contact-field label {
    font-size: 0.825rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: left;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    height: 2.75rem;
    padding: 0 0.875rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field textarea {
    height: auto;
    padding: 0.75rem 0.875rem;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.15);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    padding: 0 2rem;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.contact-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.contact-form-note {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: hsl(var(--accent) / 0.10);
    border: 1px solid hsl(var(--accent) / 0.30);
}

/* Info sidebar */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
}

.contact-info-card h3 { font-size: 0.95rem; font-weight: 700; color: hsl(var(--foreground)); margin: 0 0 1rem; }
.contact-info-card p  { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; margin: 0 0 1rem; }

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    padding-bottom: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.contact-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-whatsapp-btn:hover { background: #1ebe5d; }

/* ─── Layout ───────────────────────────────────────────────── */
#root {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* ─── Logo ─────────────────────────────────────────────────── */
.logo {
    height: 6em;
    padding: 1.5em;
    will-change: filter;
    transition: filter 300ms;
}

.logo:hover {
    filter: drop-shadow(0 0 2em #646cffaa);
}

.logo.react:hover {
    filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: no-preference) {
    a:nth-of-type(2) .logo {
        animation: logo-spin infinite 20s linear;
    }
}

/* ─── Card ─────────────────────────────────────────────────── */
.card {
    padding: 2em;
}

/* ─── Docs link ────────────────────────────────────────────── */
.read-the-docs {
    color: hsl(var(--muted-foreground));
}

/* ════════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════════════════════════ */

/* ─── Shared container ─────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Shared icon colours ──────────────────────────────────── */
.check-icon { color: hsl(var(--accent)); }
.accent-icon { color: hsl(var(--accent)); }

/* ─── Page Header ──────────────────────────────────────────── */
.products-header {
    padding: 5rem 1rem;
    text-align: center;
}

.products-header h1 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin: 0 0 1rem;
}

.products-header p {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.80);
    max-width: 40rem;
    margin: 0 auto;
}

.page-header-badge {
    display: inline-block;
    background: hsl(var(--primary-foreground) / 0.20);
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary-foreground) / 0.30);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    white-space: nowrap;
}

/* ─── Products Grid ────────────────────────────────────────── */
.products-section {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Product Card ─────────────────────────────────────────── */
.product-card {
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: hsl(var(--secondary));
    box-shadow: 0 0 0 2px hsl(var(--secondary) / 0.30), var(--shadow-md);
}

.product-card-popular {
    background: var(--gradient-aqua);
    color: hsl(var(--primary-foreground));
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.product-card-img {
    aspect-ratio: 1 / 1;
    background: hsl(var(--muted));
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-tag {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--muted-foreground));
    background: transparent;
    padding: 0.2rem 0.6rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-card-name {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem;
}

.product-card-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 0.75rem;
}

/* Stats row — stages / tank / taps */
.product-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.product-stat { text-align: center; }
.product-stat + .product-stat { border-left: 1px solid hsl(var(--border)); }

.product-stat-value {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: hsl(var(--primary));
}

.product-stat-label {
    display: block;
    font-size: 0.625rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Features list */
.product-card-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.product-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Price */
.product-card-price {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin: 0 0 0.5rem;
}

/* Action buttons */
.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-actions.single {
    grid-template-columns: 1fr;
}

/* Primary — Buy Now */
.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy-now:hover { opacity: 0.88; box-shadow: var(--shadow-md); }

/* Secondary — Add to Cart */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: transparent;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: none;
}

.btn-add-cart:hover { background: hsl(var(--primary) / 0.08); opacity: 1; box-shadow: none; }

/* ─── Specs Section ────────────────────────────────────────── */
.specs-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem;
}

.section-header p {
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

.spec-card {
    background: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    padding: 1.5rem;
}

.spec-card-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.spec-card-title svg { color: hsl(var(--secondary)); }

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.spec-row:last-of-type { border-bottom: none; }
.spec-row-key { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.spec-row-val { font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); }

.spec-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.spec-footer-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ─── Comparison Table ─────────────────────────────────────── */
.comparison-section {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.comparison-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    text-align: center;
    margin: 0 0 2.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.comparison-table thead tr { background: var(--gradient-primary); }

.comparison-table thead th {
    padding: 1rem;
    color: hsl(var(--primary-foreground));
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.comparison-table thead th:not(:first-child) { text-align: center; }

.comparison-table tbody tr:nth-child(even) { background: hsl(var(--muted) / 0.4); }
.comparison-table tbody tr { border-top: 1px solid hsl(var(--border)); }

.comparison-table td {
    padding: 1rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    text-align: left;
}

.comparison-table td:not(:first-child) { text-align: center; }

.tbl-check { display: inline-block; }
.tbl-no { color: hsl(var(--muted-foreground)); }

/* ─── Delivery Section ─────────────────────────────────────── */
.delivery-section { padding: 4rem 0; }

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .delivery-grid { grid-template-columns: repeat(3, 1fr); }
}

.delivery-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--primary-foreground) / 0.10);
    border: 1px solid hsl(var(--primary-foreground) / 0.20);
}

.delivery-card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.delivery-card h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: hsl(var(--primary-foreground));
}

.delivery-card p {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.75);
    margin: 0;
}

/* ─── CTA Section ──────────────────────────────────────────── */
.cta-section {
    padding: 4rem 0;
    background: hsl(var(--background));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 1rem;
}

.cta-section p {
    color: hsl(var(--muted-foreground));
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    text-align: center;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-lg:hover { opacity: 0.88; box-shadow: var(--shadow-lg); }

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-outline-lg:hover { background: hsl(var(--primary) / 0.08); }

/* ─── Cart Drawer ──────────────────────────────────────────── */
body.cart-open { overflow: hidden; }

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
}

.cart-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.open .cart-drawer-overlay { opacity: 1; }

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    background: hsl(var(--background));
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
}

.cart-drawer-header h2 {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cart-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: inherit;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-drawer-close svg { display: block; }

.cart-drawer-close:hover { background: rgba(255, 255, 255, 0.32); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1.25rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem 2rem;
    color: hsl(var(--muted-foreground));
}

.cart-empty svg {
    width: 56px;
    height: 56px;
    margin-bottom: 0.85rem;
    color: hsl(var(--primary) / 0.35);
}

.cart-empty p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    color: hsl(var(--foreground));
    font-weight: 500;
}

.cart-shop-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.cart-shop-btn:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-md);
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 0.85rem;
    align-items: start;
    padding: 0.95rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.cart-item:last-child { border-bottom: none; }

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.5rem;
    background: hsl(var(--muted));
}

.cart-item-info h4 {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.cart-item-price {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    color: hsl(var(--primary));
    font-weight: 700;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    color: hsl(var(--foreground));
    transition: background 0.15s ease;
}

.cart-qty button svg { display: block; }

.cart-qty button:hover { background: hsl(var(--muted)); }

.qty-val {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1;
}

.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    padding: 0.3rem;
    border-radius: 0.4rem;
    transition: color 0.2s ease, background 0.2s ease;
    align-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: hsl(var(--destructive));
    background: hsl(var(--destructive) / 0.08);
}

.cart-drawer-footer {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--muted) / 0.4);
}

.cart-drawer-footer:empty { display: none; }

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: hsl(var(--foreground));
}

.cart-subtotal strong {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.3rem;
    color: hsl(var(--primary));
}

.cart-checkout-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.cart-checkout-btn:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-md);
}

.cart-clear-btn {
    width: 100%;
    background: transparent;
    color: hsl(var(--muted-foreground));
    border: none;
    padding: 0.55rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cart-clear-btn:hover { color: hsl(var(--destructive)); }

.cart-note {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    text-align: center;
    color: hsl(var(--muted-foreground));
}

/* ─── Cart Toast ───────────────────────────────────────────── */
.cart-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%, calc(100% + 1.5rem));
    background: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1300;
    max-width: calc(100vw - 2rem);
    text-align: center;
}

.cart-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* ─── Checkout Form (in drawer) ────────────────────────────── */
.cart-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    padding: 0.4rem 0;
    margin: 0.25rem 0 0.75rem;
    color: hsl(var(--primary));
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-back-btn:hover { text-decoration: underline; text-underline-offset: 3px; }

.checkout-summary {
    background: hsl(var(--muted) / 0.6);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: hsl(var(--foreground));
    padding: 0.25rem 0;
}

.checkout-line.total {
    border-top: 1px solid hsl(var(--border));
    margin-top: 0.4rem;
    padding-top: 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.checkout-line.total strong {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.15rem;
    color: hsl(var(--primary));
}

.checkout-form {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.checkout-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-form label .optional {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: hsl(var(--muted-foreground));
    font-size: 0.72rem;
}

.checkout-form input,
.checkout-form textarea {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 0.55rem;
    padding: 0.65rem 0.8rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
    box-sizing: border-box;
}

.checkout-form textarea {
    resize: vertical;
    min-height: 60px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

.checkout-form input:user-invalid,
.checkout-form textarea:user-invalid {
    border-color: hsl(var(--destructive));
}

.cart-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.pac-container {
    z-index: 1300;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Commercial Solutions Section ─────────────────────────── */
.commercial-section {
    padding: 4rem 0;
    background: hsl(var(--background));
}

.commercial-card {
    display: grid;
    grid-template-columns: 1fr;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    overflow: hidden;
}

@media (min-width: 900px) {
    .commercial-card { grid-template-columns: 1.05fr 1fr; }
}

.commercial-card-left {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.commercial-card-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.commercial-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.18);
    color: hsl(var(--primary-foreground));
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.commercial-card-left h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    color:#fff;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.commercial-lead {
    margin: 0 0 1.75rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
}

.commercial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.commercial-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    padding: 0.85rem 0.5rem;
    text-align: center;
    backdrop-filter: blur(2px);
}

.commercial-stat-value {
    display: block;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700;
    line-height: 1.1;
}

.commercial-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.commercial-card-right {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
}

.commercial-included-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.commercial-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.65rem;
}

.commercial-checklist li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.92rem;
    color: hsl(var(--foreground));
}

.commercial-checklist svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 4px;
    color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.12);
    border-radius: 50%;
}

.commercial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.commercial-cta:hover {
    opacity: 0.92;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .commercial-card-left,
    .commercial-card-right { padding: 1.75rem 1.4rem; }
    .commercial-stats { grid-template-columns: 1fr; }
    .commercial-cta { width: 100%; align-self: stretch; }
}

/* ─── Quote Modal ──────────────────────────────────────────── */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal[hidden] { display: none; }
.quote-modal.open { opacity: 1; }

.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.6);
}

.quote-modal-card {
    position: relative;
    background: hsl(var(--background));
    border-radius: 1.1rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s ease;
}

.quote-modal.open .quote-modal-card { transform: translateY(0) scale(1); }

.quote-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.5rem 0.75rem;
    border-bottom: 1px solid hsl(var(--border));
}

.quote-modal-header h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.3rem;
}

.quote-modal-header p {
    margin: 0 0 1rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.quote-modal-close {
    background: hsl(var(--muted));
    border: none;
    color: hsl(var(--foreground));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.quote-modal-close:hover { background: hsl(var(--muted-foreground) / 0.25); }

.quote-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
    overflow-y: auto;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.85rem;
    margin-bottom: 1.1rem;
}

.quote-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quote-form-grid label.quote-form-full { grid-column: 1 / -1; }

.quote-form-grid label .optional {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: hsl(var(--muted-foreground));
    font-size: 0.7rem;
}

.quote-form-grid input,
.quote-form-grid select,
.quote-form-grid textarea {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 0.55rem;
    padding: 0.6rem 0.8rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    text-transform: none;
    letter-spacing: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-grid textarea {
    resize: vertical;
    min-height: 70px;
}

.quote-form-grid input:focus,
.quote-form-grid select:focus,
.quote-form-grid textarea:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

.quote-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.quote-submit-btn:hover { opacity: 0.92; box-shadow: var(--shadow-md); }
.quote-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }

.quote-form-status {
    margin: 0.75rem 0 0;
    text-align: center;
    color: hsl(var(--destructive));
    font-size: 0.85rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.quote-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.quote-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: hsl(var(--accent) / 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--accent));
}

.quote-success h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.5rem;
}

.quote-success p {
    margin: 0 0 1.25rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.55;
}

.quote-success-close {
    display: inline-block;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s ease;
}

.quote-success-close:hover { opacity: 0.9; }

@media (max-width: 540px) {
    .quote-form-grid { grid-template-columns: 1fr; }
}

/* ─── Rotating header word ─────────────────────────────────── */
.rotating-word {
    display: inline-block;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
}

.rotating-word.rotating-word-out {
    transform: translateY(-12px);
    opacity: 0;
}

.rotating-word.rotating-word-in {
    animation: rotatingWordIn 0.4s ease forwards;
}

@keyframes rotatingWordIn {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* ─── Mobile Polish ────────────────────────────────────────── */
/* Site-wide horizontal overflow guard */
html, body { overflow-x: hidden; }
img, video, svg { max-width: 100%; }

@media (max-width: 768px) {
    /* Nav — tighter padding, smaller logo */
    nav { padding: 12px 16px; }
    logo img { height: 60px; }

    .nav-actions { gap: 8px; }
    .nav-cart { padding: 6px; }
    .nav-cart svg { width: 20px; height: 20px; }
    .nav-order-btn {
        padding: 8px 14px;
        font-size: 0.82em;
    }

    /* Page headers — reduce vertical space */
    .products-header { padding: 4rem 1rem 3rem; }
    .products-header h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .products-header p { font-size: 1rem; }
    .page-header-section { padding-top: 5.5rem; padding-bottom: 3rem; }
    .page-header-inner h1 { font-size: clamp(1.9rem, 7vw, 2.75rem); }

    /* Stats — keep value from overflowing the 2-col grid */
    .Stats { padding: 2.5rem 0.75rem; }
    .Stats-grid {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    .Stats-grid h2 {
        font-size: clamp(1.25rem, 5.5vw, 1.75rem);
        word-break: break-word;
    }
    .Stats-grid p { font-size: 0.8rem; }

    /* CTA actions — full width buttons stack */
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .btn-primary-lg,
    .btn-outline-lg {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    /* Comparison table — tighter cells */
    .comparison-table { font-size: 0.8rem; }
    .comparison-table thead th,
    .comparison-table td { padding: 0.7rem 0.6rem; }
    .comparison-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }

    /* Specs section — compact */
    .specs-section { padding: 3rem 0; }
    .spec-card { padding: 1.25rem; }

    /* Delivery section */
    .delivery-section { padding: 3rem 0; }

    /* Section padding overall */
    .commercial-section,
    .products-section { padding: 3rem 0; }

    /* Cart drawer header — tighter on small screens */
    .cart-drawer-header { padding: 0.95rem 1rem; }
    .cart-drawer-body { padding: 0.5rem 1rem; }
    .cart-drawer-footer { padding: 0.85rem 1rem 1.1rem; }

    /* Quote modal padding */
    .quote-modal-header { padding: 1.1rem 1.1rem 0.6rem; }
    .quote-modal-body { padding: 1rem 1.1rem 1.25rem; }
}

@media (max-width: 480px) {
    /* Nav: drop the secondary "Order Now" — hamburger handles full menu */
    nav { padding: 10px 14px; }
    logo img { height: 52px; }
    .nav-order-btn { display: none; }

    /* Container padding */
    .container { padding: 0 1rem; }
    .section-inner { padding: 0 1rem; }

    /* Product card actions stack on narrow phones */
    .product-card-actions { grid-template-columns: 1fr; }
    .btn-buy-now,
    .btn-add-cart {
        padding: 0.75rem 0.9rem;
        font-size: 0.88rem;
    }

    .product-card-body { padding: 1.25rem; }
    .product-card-name { font-size: 1.15rem; }
    .product-card-price { font-size: 1.45rem; }

    /* Cart item — smaller thumb on tiny screens */
    .cart-item {
        grid-template-columns: 56px 1fr auto;
        gap: 0.7rem;
    }
    .cart-item img { width: 56px; height: 56px; }
    .cart-item-info h4 { font-size: 0.88rem; }

    /* Hero trust badges wrap better */
    .hero-trust-row { gap: 0.4rem; }
    .hero-trust-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.6rem;
    }

    /* Footer — tighter */
    .footer-grid { gap: 2rem; }
    .footer-newsletter-row {
        flex-direction: row;
        align-items: stretch;
        max-width: 100%;
    }
    .footer-email-input { min-width: 0; flex: 1; }

    /* Thank-you card padding */
    .thankyou-card { padding: 2rem 1.25rem; }

    /* Quote form — already 1-col below 540px, keep consistent label sizes */
    .quote-form-grid label { font-size: 0.72rem; }
}

@media (max-width: 380px) {
    /* Very small phones — stack stats, shrink logo */
    logo img { height: 46px; }
    .Stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .Stats-grid h2 { font-size: 1.6rem; }
}

/* Touch target floor: ensure tappable buttons meet ~44px height */
@media (hover: none) and (pointer: coarse) {
    .nav-cart,
    .nav-order-btn,
    .btn-buy-now,
    .btn-add-cart,
    .cart-checkout-btn,
    .quote-submit-btn,
    .commercial-cta,
    .contact-submit-btn {
        min-height: 44px;
    }
}

/* ─── Newsletter validation feedback ──────────────────────── */
.footer-email-input.input-error {
    outline: 2px solid hsl(var(--destructive));
    outline-offset: 2px;
}

/* ─── Abandoned-cart recovery banner ──────────────────────── */
.abandoned-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-md);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.abandoned-banner.show { transform: translateY(0); }

.abandoned-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.abandoned-banner-msg {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.45;
}

.abandoned-banner-msg strong { font-weight: 700; }

.abandoned-banner-resume {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: inherit;
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.abandoned-banner-resume:hover { background: rgba(255, 255, 255, 0.32); }

.abandoned-banner-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.abandoned-banner-close:hover { background: rgba(255, 255, 255, 0.18); }
.abandoned-banner-close svg { display: block; }

@media (max-width: 600px) {
    .abandoned-banner-inner { flex-wrap: wrap; gap: 0.5rem 0.75rem; }
    .abandoned-banner-msg { flex: 1 1 100%; font-size: 0.82rem; order: 1; }
    .abandoned-banner-resume { flex: 1; order: 2; }
    .abandoned-banner-close { order: 3; }
}
